place Absurdistan : a bumpy ride through some of the world's scariest, weirdest places / Eric Campbell By prospero.murdoch.edu.au Published On :: Campbell, Eric, 1960- Full Article
place The marketplace of attention : how audiences take shape in a digital age / James G. Webster By prospero.murdoch.edu.au Published On :: Webster, James G Full Article
place In the cult of violence, Pak has kept a place for India By www.rediff.com Published On :: Both India and Pakistan need to exercise restraint, but we also need to lay down a threshold which says -- this far and no more, says Colonel (retired) Jaibans Singh Full Article
place Heterogeneous electrochemical reactions taking place on metallic iron in ammoniacal-carbonate solutions containing dissolved nickel, cobalt, copper and thiosulfate ions / Anna d'Aloya de Pinilla By prospero.murdoch.edu.au Published On :: D'Aloya de Pinilla, Anna, author Full Article
place 011 JSJ Can HTML5 and JavaScript Really Replace Flash? By devchat.tv Published On :: Fri, 13 Apr 2012 10:00:00 -0400 The panelists discuss whether HTML5 and JavaScript can really replace Flash. Full Article
place Your rights at work [electronic resource] : all you need to know about workplace law, and how to use it to protect your job / by Richard C. Busse By prospero.murdoch.edu.au Published On :: Busse, Richard C Full Article
place Inpatient PCI Volume and Transcatheter Aortic Valve Replacement or Mitral Valve Repair Outcomes By jamanetwork.com Published On :: Wed, 01 Apr 2020 00:00:00 GMT This cross-sectional study investigates whether hospital inpatient percutaneous coronary intervention volume is associated with rates of 30-day risk-adjusted mortality and hospital readmission after transcatheter aortic valve replacement and transcatheter mitral valve repair. Full Article
place Arrests of top IM operatives should spur on security agencies rather than breed complacency By timesofindia.indiatimes.com Published On :: Wed, 26 Mar 2014 00:07:45 IST With the arrest of Tehsin Akhtar, thought to be Indian Mujahideen (IM) commander of India operations, security agencies have netted another big fish in the fight against terror. Full Article
place The dysfunctional library: challenges and solutions to workplace relationships / Jo Henry, Joe Eshleman, Richard Moniz By library.mit.edu Published On :: Sun, 26 Apr 2020 07:06:33 EDT Barker Library - Z682.H495 2018 Full Article
place Cryogenic safety: a guide to best practice in the lab and workplace / Thomas J. Peterson and J. G. Weisend II ; with contributions by John M. JurnsStephen S. Woods By library.mit.edu Published On :: Sun, 19 May 2019 06:18:11 EDT Online Resource Full Article
place A place at His table : a Biblical exploration of faith, sexuality, and the kingdom of God / Joel Hollier By prospero.murdoch.edu.au Published On :: Hollier, Joel, author Full Article
place CSS image replacement. One more time. By nicolasgallagher.com Published On :: Sun, 13 Jun 2010 17:00:00 -0700 An accessible image replacement method using pseudo-elements and generated-content. This method works with images and/or CSS off, with semi-transparent images, doesn’t hide text from screen-readers or search engines, and provides fallback for IE 6 and IE 7. Known support: Firefox 1.5+, Safari 3+, Chrome 3+, Opera 9+, IE 8+ What’s wrong with current methods? The two most widely used image replacement techniques are the Gilder/Levin Method and the Phark Method. Both have different flaws. The Gilder/Levin Method requires the addition of presentational HTML (an empty span) and doesn’t work with transparent images as the default text shows through. The Phark Method uses a negative text-indent to hide the text and so it is not visible when CSS is on and images are off. Resurrecting the NIR method Using pseudo-elements and generated-content as an image replacement technique isn’t a new idea. It was proposed and demonstrated by Paul Nash back in 2006. This is the Nash Image Replacement method. <h1 class="nir">[content]</h1> .nir { height: 100px; /* height of replacement image */ padding: 0; margin: 0; overflow: hidden; } .nir:before { content: url(image.gif); display: block; } The height value is equal to that of the replacement image. Setting overflow:hidden ensures that the original content is not visible on screen when the image is loaded. The replacement image is inserted as generated content in the :before pseudo-element which is set to behave like a block element in order to push the element’s original content down. What about IE 6 and IE 7? Neither browser supports :before; if you need to support them you’ll have to rely on the Phark method. This can be done using conditional comments or safe IE6/7 hacks to serve alternative styles to legacy versions of IE . <!--[if lte IE 7]> <style> .nir { height: 100px; padding: 0; margin: 0; overflow: hidden; text-indent: -9000px; background: url(image.gif) no-repeat 0 0; } </style> <![endif]--> Using the NIR method allows you to keep your HTML semantic and deliver improved accessibility to users of modern browsers. The Phark Method can then be served to IE 6 and IE 7. Improving the NIR method The first problem with NIR is that if images are disabled all browsers leave whitespace above the element’s content. Opera 10.5 even displays the text string “image”! If the height of the element is small enough this whitespace causes the element’s content to overflow and be partially or completely hidden when images are disabled. Another consideration is what happens if an image doesn’t exist or fails to load. Safari and Chrome will display a “missing image” icon that cannot be removed. Once again, this can cause the element’s content to overflow and become partially or completely hidden to users. A more robust version of the NIR method is the following modification: .nir { height: 100px; /* height of replacement image */ width: 400px; /* width of replacement image */ padding: 0; margin: 0; overflow: hidden; } .nir:before { content: url(image.gif); display: inline-block; font-size: 0; line-height: 0; } Setting font-size and line-height to 0 avoids the whitespace problems in all browsers. Setting the element’s width equal to that of the replacement image and getting the pseudo-element to act as an inline-block helps minimise the problems in webkit browsers should an image fail to load. Ideally browsers would avoid displaying anything in a pseudo-element when its generated-content image fails to load. If that were the case, the original NIR method would be all that is needed. What about using sprites? One of the most common uses of image replacement is for navigation. This often involves using a large sprite with :hover and :active states as a background image. It turns out that using sprites is not a problem for modern browsers. When using the modified-NIR method the sprite is included as a generated-content image that is positioned using negative margins. This is an example that rebuilds the right-hand category navigation from Web Designer Wall using a sprite and the modified-NIR method. <ul id="nav"> <li id="nav-item-1"><a href="#non">Tutorials</a></li> <li id="nav-item-2"><a href="#non">Trends</a></li> <li id="nav-item-3"><a href="#non">General</a></li> </ul> /* modified-NIR */ #nav a { display: block; width: 225px; height: 46px; overflow: hidden; } #nav a:before { content:url(sprite.png); display:-moz-inline-box; /* for Firefox 1.5 & 2 */ display:inline-block; font-size:0; line-height:0; } /* repositioning the sprite */ #nav-item-1 a:hover:before, #nav-item-1 a:focus:before, #nav-item-1 a:active:before {margin:-46px 0 0;} #nav-item-2 a:before {margin:-92px 0 0;} #nav-item-2 a:hover:before, #nav-item-2 a:focus:before, #nav-item-2 a:active:before {margin:-138px 0 0;} #nav-item-3 a:before {margin:-184px 0 0;} #nav-item-3 a:hover:before, #nav-item-3 a:focus:before, #nav-item-3 a:active:before {margin:-230px 0 0;} /* :hover hack for IE8 if no a:hover styles declared */ #nav a:hover {cursor:pointer;} For some reason IE8 refuses to reposition the image when the mouse is over the link unless a style is declared for a:hover. In most cases you will have declared a:hover styles for the basic links on your webpage, and this is enough. But it is worth being aware of this IE8 behaviour. The addition of display:-moz-inline-box; is required to reposition the sprite in versions of Firefox prior to Firefox 3.0. They are very rare browsers but I’ve included it in case that level of legacy support is needed. If you want image replacement in IE 6 and IE 7 the following additional styles can be served to those browsers using conditional comments. /* Phark IR method */ #nav a { text-indent: -9000px; background: url(sprite.png) no-repeat; } /* repositioning the sprite */ #nav-item-1 a:hover, #nav-item-1 a:active { background-position: 0 -46px; } #nav-item-2 a { background-position: 0 -92px; } #nav-item-2 a:hover, #nav-item-2 a:hover { background-position: 0 -138px; } #nav-item-3 a { background-position: 0 -184px; } #nav-item-3 a:hover, #nav-item-3 a:active { background-position: 0 -230px; } /* hack for IE6 */ #nav a:hover { margin: 0; } The changes are fairly simple. But IE 6 applies the margins declared for a:hover:before to a:hover and so they need to be reset in the styles served to IE 6. See the modified-NIR (using sprites) demo. Full Article
place 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
place The stirring of soul in the workplace [electronic resource] / Alan Briskin By prospero.murdoch.edu.au Published On :: Briskin, Alan, 1954- Full Article
place The Tech Professional's Guide to Communicating in a Global Workplace [electronic resource] : Adapting Across Cultural and Gender Boundaries / by April Wells By prospero.murdoch.edu.au Published On :: Wells, April. author Full Article
place Technology entrepreneurship [electronic resource] : taking innovation to the marketplace / Thomas N. Duening, Ph.D, El Pomar Chair of Business and Entrepreneurship, Director, Center for Entrepreneurship, College of Business, University of Colorado at Colo By prospero.murdoch.edu.au Published On :: Duening, Thomas N Full Article
place Thriving under stress [electronic resource] : harnessing demands in the workplace / Thomas W. Britt, Ph.D., Professor of Psychology, Clemson University, Steve M. Jex, Ph.D., Professor of Psychology, Bowling Green State University By prospero.murdoch.edu.au Published On :: Britt, Thomas W., 1966- Full Article
place Turn enemies into allies [electronic resource] : the art of peace in the workplace / Judy Ringer ; foreword by James Warda ; illustrations by Adam Richardson By prospero.murdoch.edu.au Published On :: Ringer, Judy, 1949- author Full Article
place Us vs. them [electronic resource] : redefining the multi-generational workplace to inspire your employees to love your company, drive innovation, and embrace change / Jeff Havens By prospero.murdoch.edu.au Published On :: Havens, Jeff, author Full Article
place JAMA Internal Medicine : Changes in Functional Status in the Year After Aortic Valve Replacement By traffic.libsyn.com Published On :: Mon, 04 Feb 2019 16:00:00 +0000 Interview with Dae Hyun Kim, author of Evaluation of Changes in Functional Status in the Year After Aortic Valve Replacement, and Emily Finlayson, MD, MS, author of Invasive Procedures to Improve Function in Frail Older Adults: Do Outcomes Justify the Intervention? Full Article
place JAMA Cardiology : Transcatheter Aortic Valve Replacement for Patients at Low Surgical Risk—Selective or Ubiquitous? By traffic.libsyn.com Published On :: Wed, 13 Nov 2019 16:00:00 +0000 Interview with Michael J. Reardon, MD, Martin B. Leon, MD, and Patrick T. O'Gara, MD, authors of Transcatheter Aortic Valve Replacement for Patients at Low Surgical Risk—Selective or Ubiquitous? Full Article
place JAMA Cardiology : Utility of 90-Day vs 30-Day Mortality Quality Metrics for Aortic Valve Replacement Outcomes By traffic.libsyn.com Published On :: Wed, 18 Dec 2019 16:00:00 +0000 Interview with Tsuyoshi Kaneko, MD, and Sameer A Hirji, MD, authors of Utility of 90-Day Mortality vs 30-Day Mortality as a Quality Metric for Transcatheter and Surgical Aortic Valve Replacement Outcomes, and Michael J. Mack, MD, author of Ninety-Day Outcome Assessment After Transcatheter and Surgical Aortic Valve Replacement—Is the Juice Worth the Squeeze? Full Article
place Ex-Disney workers replaced by H1-B visa holders file complaint By indianexpress.com Published On :: Tue, 24 Nov 2015 05:11:47 +0000 Full Article DO NOT USE Indians Abroad World
place What is a “third place,” and do you have one? By www.berkshirepublishing.com Published On :: Fri, 01 Nov 2019 11:05:34 +0000 The term “happy place” is not in the Oxford English Dictionary (though “happy slap” is), but I’ve been hearing the term a lot. There’s even a new shop in Great Barrington called HappyPlace Berkshires. I first dismissed it as therapeutic slang, but discovered that the concept actually goes back to the Greeks: a utopia is The post What is a “third place,” and do you have one? appeared first on Berkshire Publishing. Full Article Berkshire Blog China Community third places
place Armed conflict and forcible displacement: individual rights under international law / edited by Elena Katselli Proukaki By library.mit.edu Published On :: Sun, 4 Aug 2019 10:22:43 EDT Dewey Library - KZ6530.A75 2018 Full Article
place Handling climate displacement / Khaled Hassine, United Nations, Geneva By library.mit.edu Published On :: Sun, 19 Jan 2020 08:04:55 EST Dewey Library - K3585.5.H37 2019 Full Article
place Natural resources law: a place-based book of problems and cases / Christine A. Klein, University of Florida, Levin College of Law; Federico (Fred) Cheever, University of Denver, Sturm College of Law; Bret C. Birdsong, University of Nevada, Las Vegas, Will By library.mit.edu Published On :: Sun, 23 Feb 2020 09:36:00 EST Dewey Library - KF5505.K58 2018 Full Article
place Reimagining administrative justice: human rights in small places / Margaret Doyle, Nick O'Brien By library.mit.edu Published On :: Sun, 15 Mar 2020 08:09:28 EDT Dewey Library - K3400.D69 2020 Full Article
place Industrial Placement - Defence Security Analysis Division: Defence Science and Technology Laboratory By brightrecruits.com Published On :: Thu, 21 Nov 2019 00:00:00 Z £Attractive: Defence Science and Technology LaboratoryFor more latest jobs and jobs in South West England visit brightrecruits.com Full Article South West England
place Industrial Placement - Counter Terrorism and Security Division: Defence Science and Technology Laboratory By brightrecruits.com Published On :: Fri, 03 Jan 2020 00:00:00 Z £Attractive: Defence Science and Technology LaboratoryFor more latest jobs and jobs in South West England visit brightrecruits.com Full Article South West England
place New Chinese-language documentaries : ethics, subject and place / Kuei-fen Chiu and Yingjin Zhang By prospero.murdoch.edu.au Published On :: Chiu, Kuei-fen, author Full Article
place 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
place Governments are slow to put in place the policies we need for adaptation to climate change By feedproxy.google.com Published On :: 10 Feb 2020 06:01:16 +0000 Policies aimed at adaptation will help the world build resilient highways and other infrastructure Full Article
place University of Oklahoma natural product chemist finds novel molecules in unexpected places By feedproxy.google.com Published On :: 16 Feb 2020 12:23:24 +0000 Robert Cichewicz looks off the beaten path for unusual plant and fungi compounds Full Article
place Chemists are finding their place on TikTok By feedproxy.google.com Published On :: 21 Feb 2020 16:09:12 +0000 Educators, researchers, and students are coming together to share chemistry demos and talk shop on the wildly popular video app Full Article
place China's new place on the front lines of diagnosing and treating coronavirus disease By feedproxy.google.com Published On :: 28 Feb 2020 20:15:17 +0000 Industry watchers say the effort is unprecedented and would not have been possible during the last SARS outbreak Full Article
place Dipharma places a kilo lab in Kalamazoo By feedproxy.google.com Published On :: 07 Mar 2020 11:22:29 +0000 Full Article
place Pentachlorophenol is on its way out as a utility pole preservative. Here's what might take its place By feedproxy.google.com Published On :: 12 Apr 2020 19:26:33 +0000 Phaseout is pushing a slow-to-change industry to look at alternatives Full Article
place CFC replacements are a source of persistent organic pollution in the Arctic By feedproxy.google.com Published On :: 02 May 2020 04:00:00 +0000 Analysis of ice cores shows increasing levels of three short-chain PFAS linked to CFC replacement chemicals Full Article
place CFC replacements are a source of persistent organic pollution in the Arctic By feedproxy.google.com Published On :: 04 May 2020 04:00:00 +0000 Analysis of ice cores shows increasing levels of 3 short-chain PFAS linked to replacements of CFCs Full Article
place Students will take the Advanced Placement chemistry exam in a modified format By feedproxy.google.com Published On :: 07 May 2020 15:00:40 +0000 Decision to move forward during COVID-19 pandemic relieves some but also raises concerns about cheating Full Article
place Manu Bhaker gets electronic target installed at home in place of manual machine By www.thehindu.com Published On :: Fri, 08 May 2020 15:47:04 +0530 Manu Bhaker was sure in her mind that the Olympics will take place next year despite the uncertainty in the world of sports due to the COVID-19 pandemic. Full Article Other Sports
place Birthplace of the atomic bomb: a complete history of the Trinity Test Site / William S. Loring By library.mit.edu Published On :: Sun, 20 Oct 2019 07:55:47 EDT Hayden Library - QC773.3.U5 L66 2019 Full Article
place Part 2 – Ch30 – The Place Of Coolness By www.amaravati.org Published On :: Sat, 11 Oct 2014 13:15:41 +0000 These are the recordings of the complete collection of all the talks by Ajahn Chah that have been translated into English and are published in 'The Collected Teachings of Ajahn Chah', 2011. This was read by Ajahn Amaro during the winter of 2012 The post Part 2 – Ch30 – The Place Of Coolness appeared first on Amaravati Buddhist Monastery. Full Article Audio Readings
place Greens protest over littering of public places By timesofindia.indiatimes.com Published On :: Sat, 09 May 2020 16:50:38 IST People have been littering a road at Babugudda by throwing waste every day even when a group of nature lovers in the city has been carrying out cleanliness drive regularly there. The group had also planted hundreds of saplings to make the area, which is adjacent to a crematorium, clean. However, people continue to throw garbage not bothering about the campaigns of greens. Full Article
place Transit-oriented displacement or community dividends?: understanding the effects of smarter growth on communities / Karen Chapple and Anastasia Loukaitou-Sideris By library.mit.edu Published On :: Sun, 29 Sep 2019 06:00:01 EDT Rotch Library - HT241.C424 2019 Full Article
place Rethinking third places: informal public spaces and community building / edited by Joanne Dolley, Caryl Bosman By library.mit.edu Published On :: Sun, 29 Sep 2019 06:00:01 EDT Rotch Library - HT185.R48 2019 Full Article
place Inhabiting the sacred in everyday life: how to design a place that touches your heart, stirs you to consecrate and cultivate it as home, dwell intentionally within it, slay monsters for it, and let it loose in your democracy / Randolph T. Hester, Jr. and By library.mit.edu Published On :: Sun, 20 Oct 2019 06:00:01 EDT Rotch Library - HT167.H47 2019 Full Article
place Placemaking fundamentals for the built environment / Dominique Hes, Cristina Hernandez-Santin, editors By library.mit.edu Published On :: Sun, 12 Jan 2020 06:00:02 EST Online Resource Full Article
place Changing places: the science and art of new urban planning / John MacDonald, Charles Branas, Robert Stokes By library.mit.edu Published On :: Sun, 1 Mar 2020 06:00:02 EST Rotch Library - HT166.M233 2019 Full Article