not Nanotechnology research directions for societal needs in 2020 : retrospective and outlook / Mihail C. Roco, Chad A. Mirkin, Mark C. Hersam By prospero.murdoch.edu.au Published On :: Roco, M.C. (Mihail C.) Full Article
not Understanding the nanotechnology revolution / Edward L. Wolf and Manasa Medikonda By prospero.murdoch.edu.au Published On :: Wolf, E. L Full Article
not Nanotechnology intellectual property rights : research, design, and commercialization / Prabuddha Ganguli, Siddarth Jabade By prospero.murdoch.edu.au Published On :: Ganguli, Prabuddha Full Article
not A laboratory course in nanoscience and nanotechnology / Gérrard Eddy Jai Poinern By prospero.murdoch.edu.au Published On :: Poinern, Gérrard Eddy Jai Full Article
not Nanotechnology : the future is tiny / Michael Berger (Nanowerk LLC, Berlin, Germany) By prospero.murdoch.edu.au Published On :: Berger, Michael, author Full Article
not What is the future of nanotechnology? / John Allen By prospero.murdoch.edu.au Published On :: Allen, John, 1957- author Full Article
not Nanoscience and nanotechnology / edited by Andrew Green By prospero.murdoch.edu.au Published On :: Full Article
not Our nanotechnology future / Christian Ngô and Joseph B. Natowitz By prospero.murdoch.edu.au Published On :: Ngô, Christian, author Full Article
not Structural DNA nanotechnology / Nadrian C. Seeman (New York University) By prospero.murdoch.edu.au Published On :: Seeman, Nadrian C., 1945- author Full Article
not [ASAP] Synthesis, Cytotoxicity, and Genotoxicity of 10-Aza-9-oxakalkitoxin, an <italic toggle="yes">N</italic>,<italic toggle="yes">N</italic>,<italic toggle="yes">O</italic>-Trisubstituted By feedproxy.google.com Published On :: Thu, 07 May 2020 04:00:00 GMT Journal of the American Chemical SocietyDOI: 10.1021/jacs.0c03763 Full Article
not Dendrimer crown-ether tethered multi-wall carbon nanotubes support methyltrioxorhenium in the selective oxidation of olefins to epoxides By feeds.rsc.org Published On :: RSC Adv., 2020, 10,17185-17194DOI: 10.1039/D0RA02785E, Paper Open Access   This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.Bruno Mattia Bizzarri, Angelica Fanelli, Lorenzo Botta, Claudia Sadun, Lorenzo Gontrani, Francesco Ferella, Marcello Crucianelli, Raffaele SaladinoBenzo-15-crown-5 ether supported on multi-wall carbon nanotubes (MWCNTs) by tethered poly(amidoamine) (PAMAM) dendrimers efficiently coordinated methyltrioxorhenium in the selective oxidation of olefins to epoxides.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
not Yet another HTML5 fallback strategy for IE By nicolasgallagher.com Published On :: Thu, 04 Nov 2010 17:00:00 -0700 If you’re using HTML5 elements then you’re probably also using a JavaScript shiv to help make it possible to style those elements in versions of Internet Explorer prior to IE9. But when JavaScript is disabled the accessibility of the content may be affected in these versions of IE. This is one way to provide a more accessible fallback. The concept is to ensure that all modern browsers are served the default style sheet(s) and that people using older versions of IE only download them if JavaScript is enabled. When JavaScript is not enabled, people using those browsers can be served either no styles at all (as Yahoo! suggests for browsers receiving C-Grade support) or simple fallback styles. Client-side method: conditional comments Doing this on the client-side comes at the cost of having to litter your code with proprietary conditional comments. First, it’s necessary to comment out the default style sheet(s) from versions of IE earlier than IE9. All other browsers will be able to read the file(s). <!--[if ! lt IE 9]><!--> <link rel="stylesheet" href="/css/default.css"> <!--<![endif]--> For earlier versions of IE, an HTML5 shiv is included and the necessary link elements are created and added to the DOM using JavaScript. This means that when JavaScript is not enabled in IE7 or IE8 the style sheet will not be present, resulting in an unstyled HTML page. In this example, IE6 won’t be served CSS at all. <!--[if (IE 7)|(IE 8)]> <script src="/js/html5.js"></script> <script> (function() { var link = document.createElement("link"); link.rel = "stylesheet"; link.href = "/css/default.css"; document.getElementsByTagName("head")[0].appendChild(link); }()); </script> <![endif]--> To support multiple style sheets, an array and for loop can be used. <!--[if (IE 7)|(IE 8)]> <script src="/js/html5.js"></script> <script> (function() { var css = [ '/css/default.css', '/css/section.css', '/css/custom.css' ]; var i; var link = document.createElement('link'); var head = document.getElementsByTagName('head')[0]; var tmp; link.rel = 'stylesheet'; for(i = 0; i < css.length; i++){ tmp = link.cloneNode(true); tmp.href = css[i]; head.appendChild(tmp); } }()); </script> <![endif]--> Thanks to Remy Sharp and Mathias Bynens for helping me to improve this script. Fork it. Rather than serving unstyled content, it may be preferable to provide some simple fallback styles. This can be done by linking to a separate style sheet wrapped in noscript tags. In this example, IE6 will always use these legacy styles while IE7 and IE8 will do so only when JavaScript is disabled. <!--[if lt IE 9]> <noscript> <link rel="stylesheet" href="/css/legacy.css"> </noscript> <![endif]--> You may wish to use a generic style sheet, such as “Universal IE6 CSS”, or spend a few minutes crafting your own and ensuring that the typography and colours approximate those in the default style sheet. The complete example code is as follows: <!--[if ! lt IE 9]><!--> <link rel="stylesheet" href="/css/default.css"> <!--<![endif]--> <!--[if (IE 7)|(IE 8)]> <script src="/js/html5.js"></script> <script> (function() { var link = document.createElement("link"); link.rel = "stylesheet"; link.href = "/css/default.css"; document.getElementsByTagName("head")[0].appendChild(link); }()); </script> <![endif]--> <!--[if lt IE 9]> <noscript> <link rel="stylesheet" href="/css/legacy.css"> </noscript> <![endif]--> Server-side method: user-agent string detection The drawbacks of current client-side approaches to IE fallbacks is that they are IE-specific, make extensive use of conditional comments, and have to use JavaScript to create or rewrite link elements. This blog makes use of an alternative approach: server-side user-agent detection. It was inspired by Yahoo!’s Graded Browser Support strategy – created by Nate Koechley – which recommends that all CSS and JavaScript is withheld from legacy browsers (not limited to IE). The source code in the head of this blog changes when viewed in modern browsers, IE8, and legacy browsers that are incapable of styling HTML5 elements (e.g. Firefox 2) or lack adequate CSS2.1 support (e.g. IE7). Browsers are assumed to be capable; there is no need to update the script every time a new browser is released. Only when a browser is deemed to be severely incapable is it added to a “blacklist” and served simple styles to ensure that the accessibility of the content is maintained. This is the method I prefer, although it does require more time upfront. Full Article
not Quick tip: git-checkout specific files from another branch By nicolasgallagher.com Published On :: Wed, 12 Oct 2011 17:00:00 -0700 The git-checkout command can be used to update specific files or directories in your working tree with those from another branch, without merging in the whole branch. This can be useful when working with several feature branches or using GitHub Pages to generate a static project site. The git-checkout manual page describes how the git checkout command is not just useful for switching between branches. When <paths> or --patch are given, git checkout does not switch branches. It updates the named paths in the working tree from the index file or from a named <tree-ish> (most often a commit)…The <tree-ish> argument can be used to specify a specific tree-ish (i.e. commit, tag or tree) to update the index for the given paths before updating the working tree. In git, a tree-ish is a way of referring to a particular commit or tree. This can be a partial sha or the branch, remote, and tag name pointers. The syntax for using git checkout to update the working tree with files from a tree-ish is as follows: git checkout [-p|--patch] [<tree-ish>] [--] <pathspec>… Therefore, to update the working tree with files or directories from another branch, you can use the branch name pointer in the git checkout command. git checkout <branch_name> -- <paths> As an example, this is how you could update your gh-pages branch on GitHub (used to generate a static site for your project) to include the latest changes made to a file that is on the master branch. # On branch master git checkout gh-pages git checkout master -- myplugin.js git commit -m "Update myplugin.js from master" The need to update my gh-pages branch with specific files from my master branch was how I first found out about the other uses of the checkout command. It’s worth having a read of the rest of the git-checkout manual page and experimenting with the options. Full Article
not Another CSS image replacement technique By nicolasgallagher.com Published On :: Mon, 05 Mar 2012 16:00:00 -0800 A new image replacement technique was recently added to the HTML5 Boilerplate project. This post explains how it works and how it compares to alternative image replacement techniques. [15 December 2012] This technique is no longer used in HTML5 Boilerplate. It’s been replaced by another, more reliable approach. Here’s the CSS behind the recent update to the image replacement helper class in HTML5 Boilerplate. It has also made its way into the Compass framework. .ir { font: 0/0 a; text-shadow: none; color: transparent; } What does each declaration do? font:0/0 a – a shorthand property that zeros out the font size and line-height. The a value acts as a very short font-family (an idea taken from the BEM implementation of this method). The CSS validator complains that using 0/0 in the shorthand font property is not valid, but every browser accepts it and this appears to be an error in the validator. Using font:0px/0 a passes validation but it displayed as font:0/0 a in the code that the validator flags as valid. text-shadow:none – makes sure that any inherited text shadow is removed for the text. This prevents the chance of any text shadow colors showing over the background. color:transparent – needed for browsers than don’t completely crush the text to the point of being invisible. Safari 4 (extremely rare) is an example of such a browser. There may also be mobile browsers than require this declaration. IE6/7/8 don’t recognise this value for color, but fortunately IE7/8 don’t show any trace of the text. IE6 shows a faint trace. In the HTML5 Boilerplate image replacement helper, we’ve also removed any border and background-color that may be on the element. This makes it easier to use the helper class on elements like button or with links that may included background or border properties as part of a design decision. Benefits over text-indent methods The new technique avoids various problems with any text-indent method, including the one proposed by Scott Kellum to avoid iPad 1 performance problems related to large negative text indents. Works in IE6/7 on inline-block elements. Techniques based on text indentation are basically “broken”, as shown by this test case: http://jsfiddle.net/necolas/QZvYa/show/ Doesn’t result in any offscreen box being created. The text-indent methods result in a box being drawn (sometimes offscreen) for any text that have been negatively or positively indented. It can sometimes cause performance problems but the font-based method sidesteps those concerns. No need to specify a text-alignment and hide the overflow since the text is crushed to take up no space. No need to hide br or make all fallback HTML display:inline to get around the constraints of using a text indentation. This method is not affected by those problems. Fewer styles are needed as a result of these improvements. Drawbacks No image replacement hack is perfect. Leaves a very small trace of the text in IE6. This approach means that you cannot use em units for margins on elements that make use of this image replacement code. This is because the font size is set to 0. Windows-Eyes has a bug that prevents the reading of text hidden using this method. There are no problems with all other screenreaders that have been tested. Thanks to @jkiss for providing these detailed results and to @wilto for confirming this technique works for JAWS 12 in IE 6/7/8 and Firefox 4/5/6. Like so many IR methods, it doesn’t work when CSS is loaded but images are not. Text may not be hidden if a visitor is using a user style sheet which has explicitly set important font-size declarations for the element type on which you have applied the IR class. It’s worth noting that the NIR image replacement technique avoids these drawbacks, but lacks support in IE6/7. Closing comments I’ve been using this technique without significant problems for nearly a year, ever since Jonathan Neal and I used it in a clearfix experiment. The BEM framework also makes use of it for their icon components. The core idea was even proposed back in 2003 but the browser quirks of the day may have prevented wider use. If you come across any problems with this technique, please report them at the HTML5 Boilerplate GitHub issue tracker and include a test case when appropriate. Translations Nouvelle méthode de remplacement de texte par une image Full Article
not Army will not be called into Mumbai, assures Uddhav Thackeray By www.thehindu.com Published On :: Sat, 09 May 2020 02:28:43 +0530 In his address, CM says lockdown cannot go on forever Full Article Other States
not Using Microsoft OneNote 2010 [electronic resource] / Michael C. Oldenburg By prospero.murdoch.edu.au Published On :: Oldenburg, Michael C Full Article
not JAMA Otolaryngology–Head & Neck Surgery : Association of Feeding Evaluation With Frenotomy Rates in Infants With Breastfeeding Difficulties By traffic.libsyn.com Published On :: Thu, 11 Jul 2019 15:00:00 +0000 Interview with Christopher J. Hartnick, MD, Ms Epi, author of Association of Feeding Evaluation With Frenotomy Rates in Infants With Breastfeeding Difficulties Full Article
not JAMA Cardiology : Simvastatin-Ezetimibe Compared With Simvastatin Monotherapy Among Patients 75 Years or Older By traffic.libsyn.com Published On :: Wed, 17 Jul 2019 15:00:00 +0000 Interview with Richard G. Bach, MD, author of Effect of Simvastatin-Ezetimibe Compared With Simvastatin Monotherapy After Acute Coronary Syndrome Among Patients 75 Years or Older: A Secondary Analysis of a Randomized Clinical Trial, and Antonio M. Gotto, MD DPhil, author of Intensive Lipid Lowering in Elderly Patients Full Article
not JAMA Dermatology : Natural Does Not Mean Safe By traffic.libsyn.com Published On :: Wed, 25 Sep 2019 15:00:00 +0000 Interview with Bruce Brod, MD, and Courtney Blair Rubin, MD, MBE, authors of Natural Does Not Mean Safe—The Dirt on Clean Beauty Products Full Article
not JAMA Neurology : Associations of APOE ε4 Genotype and Ball Heading With Verbal Memory in Amateur Soccer Players By traffic.libsyn.com Published On :: Mon, 27 Jan 2020 16:00:00 +0000 Interview with Michael L Lipton, MD, author of Associations of Apolipoprotein E ε4 Genotype and Ball Heading With Verbal Memory in Amateur Soccer Players Full Article
not JAMA Oncology : HSD3B1 Genotype and Clinical Outcomes in Metastatic Castration-Sensitive Prostate Cancer By traffic.libsyn.com Published On :: Thu, 13 Feb 2020 16:00:00 +0000 Interview with Nima Sharifi, M.D., author of HSD3B1 Genotype and Clinical Outcomes in Metastatic Castration-Sensitive Prostate Cancer Full Article
not We are not hyphenated Americans, but Americans: Bobby Jindal By indianexpress.com Published On :: Thu, 25 Jun 2015 11:32:53 +0000 Full Article DO NOT USE Indians Abroad World
not Goa govt notifies 12-hour work shifts By timesofindia.indiatimes.com Published On :: Sat, 09 May 2020 04:55:00 IST The Goa government has extended the working hours in factories to 12 hours with certain conditions till July-end. Full Article
not Lecture Notes Nephrology: A Comprehensive Guide to Renal Medicine By www.wiley.com Published On :: 2020-04-13T04:00:00Z Lecture Notes: Nephrology is a concise introduction to the fundamental principles of nephrology. An ideal study guide for medical trainees, this accessible resource combines the depth of a textbook with the accessibility of a handbook. Succinct chapters describe the clinical implications of renal physiology, examine major renal disorders and diseases, and explain a wide range of management and treatment options. Read More... Full Article
not Photo-reduction enables catalyst regeneration in Fenton reaction on an Fe2O3-decorated TiO2 nanotube-based photocatalyst By feeds.rsc.org Published On :: Dalton Trans., 2020, Advance ArticleDOI: 10.1039/D0DT00670J, PaperQuanming Peng, Guiming Peng, Liangpeng Wu, Yaqian Chen, Bin Han, Qiucheng Su, Shijun Liu, Xinjun LiActive Fe2+ sites of TNT(Pd)/Fe2O3 with a unique electronic structure for the Fenton reaction can be self-generated.To cite this article before page numbers are assigned, use the DOI form of citation above.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
not Selenotungstates incorporating organophosphonate ligands and metal ions: synthesis, characterization, magnetism and catalytic efficiency in Knoevenagel condensation reaction By feeds.rsc.org Published On :: Dalton Trans., 2020, Accepted ManuscriptDOI: 10.1039/D0DT00444H, PaperJingyang Niu, Hui Kong, Peipei He, Zongfei Yang, Qiaofei Xu, Jiawei Wang, Ran Ban, Pengtao Ma, Jingping WangThree sandwich-type TM-containing (TM = transition metal) organophosphonate-based polyoxotungstate clusters, [TM(H2O)4(SeW6O21)2{Co(OOCCH2NCH2PO3)2}3]12– (TM = Co, Ni), have been successfully synthesized, which is the first reported TMs-containing organophosphonate-based selenotungstates. They were structurally...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
not Xénotransplantation: le brevet sur l'animal / Alexandra Obadia ; préface de Jean-Christophe Galloux By library.mit.edu Published On :: Sun, 8 Sep 2019 10:29:39 EDT Online Resource Full Article
not Innovation and nanotechnology: converging technologies and the end of intellectual property / by David Koepsell By library.mit.edu Published On :: Sun, 3 Nov 2019 07:46:35 EST Online Resource Full Article
not Notification concerning planned measures on shared watercourses: synergies between the Watercourses Convention and the World Bank policies and practice / Salman M.A. Salman By library.mit.edu Published On :: Sun, 23 Feb 2020 09:36:00 EST Dewey Library - K758.S25 2019 Full Article
not The ultimate vintage unicorn: It's a Bizzarrini, not a Ferrari By www.business-standard.com Published On :: Fri, 13 Mar 2020 21:10:00 +0530 You'd be lucky to see one of these obscure Italian-American hybrids in the wild, let alone get your hand on one. But here's why you should, writes Full Article
not Yes, I'm turning 50. No, I'm not really ready By www.business-standard.com Published On :: Fri, 20 Mar 2020 20:57:00 +0530 You're better at spotting trends, because you've witnessed so many of them Full Article
not Career Opportunities at NSL: NSL (Nottingham Scientific Ltd) By brightrecruits.com Published On :: Fri, 07 Feb 2020 00:00:00 Z £Attractive: NSL (Nottingham Scientific Ltd)For more latest jobs and jobs in North East England visit brightrecruits.com Full Article North East England
not Zetsubō no kuni no kōfuku na wakamonotachi. English By prospero.murdoch.edu.au Published On :: Furuichi, Noritoshi, 1985- author Full Article
not Another place another time = Yi yu / Chan-Fai Cheung ; with an essay by Ľubica Učník ; Chinese essays by Donna Chu, Chan-Fai Cheung By prospero.murdoch.edu.au Published On :: Zhang, Canhui, 1949- author, photographer Full Article
not [ASAP] Quantitative Characterization of Ginsenoside Biotransformation in <italic toggle="yes">Panax notoginseng</italic> Inflorescences and Leaves by Online Two-Dimensional Liquid Chromatography Coupled to Mass Spectrometry By feedproxy.google.com Published On :: Mon, 04 May 2020 04:00:00 GMT Journal of Agricultural and Food ChemistryDOI: 10.1021/acs.jafc.0c01746 Full Article
not [ASAP] New Findings in the Amino Acid Profile and Gene Expression in Contrasting Durum Wheat Gluten Strength Genotypes during Grain Filling By feedproxy.google.com Published On :: Fri, 08 May 2020 04:00:00 GMT Journal of Agricultural and Food ChemistryDOI: 10.1021/acs.jafc.9b07842 Full Article
not [ASAP] Thermophilic 4-a-Glucanotransferase from <italic toggle="yes">Thermoproteus Uzoniensis</italic> Retards the Long-Term Retrogradation but Maintains the Short-Term Gelation Strength of Tapioca Starch By feedproxy.google.com Published On :: Fri, 08 May 2020 04:00:00 GMT Journal of Agricultural and Food ChemistryDOI: 10.1021/acs.jafc.0c00927 Full Article
not Ex–Henderson State University professors plead not guilty to making methamphetamine By feedproxy.google.com Published On :: 13 Feb 2020 05:00:00 +0000 Court documents allege the chemists made the drug and its precursors in a university laboratory Full Article
not After launching 7 companies in 12 years, Carolyn Bertozzi says she's not slowing down By feedproxy.google.com Published On :: 08 Mar 2020 06:17:00 +0000 Prolific biotech business founder says she's always on the lookout for problem-solving opportunities Full Article
not Not all US science agencies are prepared for sexual harassment claims By feedproxy.google.com Published On :: 25 Mar 2020 18:47:01 +0000 Only NIH, NSF publicize their complaint procedures Full Article
not Lilly and Sitryx sign immunotherapy pact By feedproxy.google.com Published On :: 04 Apr 2020 00:54:12 +0000 Full Article
not Incinerators may spread, not break down PFAS By feedproxy.google.com Published On :: 27 Apr 2020 21:38:14 +0000 Preliminary data show soil and water near New York facility are contaminated Full Article
not Incinerators may spread, not break down, PFAS By feedproxy.google.com Published On :: 02 May 2020 18:15:44 +0000 Preliminary data show soil and water near New York facility are contaminated Full Article
not LG Chem to invest $53.5 million in carbon nanotubes for batteries By feedproxy.google.com Published On :: 02 May 2020 18:15:55 +0000 Full Article
not East India Comedy throws a reunion for Swiggy’s `Hope, Not Hunger’ initiative By www.thehindubusinessline.com Published On :: Thu, 07 May 2020 13:03:47 +0530 East India Comedy’s stand-up comedian threw a reunion in collaboration with the food delivery platform Swiggy for its philanthropic initiative Hope, Full Article Variety
not Increased work hours, action against workers not reporting to duty, among CII’s recommendations to Labour Minister By www.thehindu.com Published On :: Sat, 09 May 2020 11:06:07 +0530 The CII representatives had a meeting with Labour and Employment Minister Santosh Kumar Gangwar on Friday Full Article Industry
not Adults with a health education but not working in health occupations [electronic resource] / by Feng Hou and Christoph Schimmele By darius.uleth.ca Published On :: [Ottawa] : Statistics Canada = Statistique Canada, 2020 Full Article
not Eight in 10 Indian companies not currently considering permanent staff layoffs or redundancies: Korn Ferry survey By economictimes.indiatimes.com Published On :: 2020-05-04T13:33:24+05:30 Given the government’s extensive requests on avoiding laying off employees, the majority of companies have not implemented or are not currently considering permanent staff layoff/redundancies (84%) or temporary layoff/furlough (83% without government subsidy support and 91% leveraging government subsidy). Full Article
not In times of Covid, diamond jobs are not forever By economictimes.indiatimes.com Published On :: 2020-05-09T01:39:11+05:30 After the lockdown was imposed, imports of rough stones dried up, and nearly 70% of workers left for their hometowns in Bihar, Uttar Pradesh, Odisha and interiors of Gujarat. Full Article
not NHRC issues notice to Maharashtra govt over deaths of migrant workers in Aurangabad train mishap, seeks details By Published On :: Saturday, May 09, 2020, 10:34 +0530 Taking suo motu cognizance of media reports, the Commission has directed State Chief Secretary and District Magistrate of Aurangabad to submit a detailed report within four weeks. Full Article