architect Architecting networked engineered systems: manufacturing systems design for industry 4.0 / Jelena Milisavljevic-Syed, Janet K. Allen, Sesh Commuri, Farrokh Mistree By library.mit.edu Published On :: Sun, 12 Apr 2020 06:36:57 EDT Online Resource Full Article
architect The Choice Architecture of School Choice Websites By www.mathematica.org Published On :: Fri, 06 Mar 2020 18:29:00 Z The authors conducted a randomized factorial experiment to determine how displaying school information to parents in different ways affects what schools they choose for their children in a hypothetical school district. Full Article
architect Phase separation driven by production of architectural RNA transcripts By feeds.rsc.org Published On :: Soft Matter, 2020, Accepted ManuscriptDOI: 10.1039/C9SM02458A, PaperTetsuya Yamamoto, Tomohiro Yamazaki, Tetsuro HiroseWe here use an extension of the Flory-Huggins theory to predict that the phase separation is driven by the production of architectural RNA (arcRNA) at a DNA locus with a...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
architect Lattice self-consistent field calculations of confined symmetric block copolymers of various chain architectures By feeds.rsc.org Published On :: Soft Matter, 2020, 16,4311-4323DOI: 10.1039/D0SM00293C, PaperJingxue Zhang, Jiaping Wu, Run Jiang, Zheng Wang, Yuhua Yin, Baohui Li, Qiang WangThe effects of chain architecture on the structural details and orientation of confined lamellae formed by symmetric AB-type block copolymer melts are studied.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
architect Copper, Brass, and Bronze Surfaces: A Guide to Alloys, Finishes, Fabrication, and Maintenance in Architecture and Art By www.wiley.com Published On :: 2020-03-24T04:00:00Z A FULL-COLOR GUIDE FOR ARCHITECTS AND DESIGN PROFESSIONALS TO THE SELECTION AND APPLICATION OF COPPER, BRASS, AND BRONZECopper, Brass, and Bronze Surfaces, third in Zahner's Architectural Metals Series, provides a comprehensive and authoritative treatment of copper, brass, and bronze applications in architecture and art. If offers architecture and design professionals the information they need to ensure proper maintenance and fabrication techniques Read More... Full Article
architect Designing a World-Class Architecture Firm: The People, Stories, and Strategies Behind HOK By www.wiley.com Published On :: 2020-04-14T04:00:00Z Offers architects and creative services professionals exclusive insights and strategies for success from the former CEO of HOK.Designing a World Class Architecture Firm: The People, Stories and Strategies Behind HOK tells the history of one of the largest design firms in the world and draws lessons from it that can help other architects, interior designers, urban planners and creative services professionals grow bigger or better. Former HOK CEO Patrick Read More... Full Article
architect Inseminations: Seeds for Architectural Thought By www.wiley.com Published On :: 2020-04-20T04:00:00Z A collection of the writing of the highly influential architect, Juhani Pallasmaa, presented in short, easily accessible, and condensed ideas ideal for studentsJuhani Pallasmaa is one of Finland’s most distinguished architects and architectural thinkers, publishing around 60 books and several hundred essays and shorter pieces over his career. His influential works have inspired undergraduate and postgraduate students of architecture and related disciplines Read More... Full Article
architect [ASAP] Large Wavelength Response to Pressure Enabled in InGaN/GaN Microcrystal LEDs with 3D Architectures By dx.doi.org Published On :: Tue, 14 Apr 2020 04:00:00 GMT ACS PhotonicsDOI: 10.1021/acsphotonics.0c00251 Full Article
architect Young Architects 13 [electronic resource] : it's different / foreword by Michael Manfredi ; introduction by Anne Rieselbach ; Catie Newell, form-ula, Future Cities Lab, Kiel Moe, NAMELESS, William O'Brien Jr By prospero.murdoch.edu.au Published On :: Full Article
architect [ASAP] Additive Manufacturing of High-Refractive-Index, Nanoarchitected Titanium Dioxide for 3D Dielectric Photonic Crystals By feedproxy.google.com Published On :: Fri, 01 May 2020 04:00:00 GMT Nano LettersDOI: 10.1021/acs.nanolett.0c00454 Full Article
architect Discovery of new polycyclic polyprenylated acylphloroglucinols with diverse architectures as potent cyclooxygenase-2 inhibitors By pubs.rsc.org Published On :: Org. Chem. Front., 2020, Advance ArticleDOI: 10.1039/D0QO00259C, Research ArticleShuangshuang Xie, Changxing Qi, Yulin Duan, Qianqian Xu, Yaping Liu, Yingying Huang, Xu Yin, Weiguang Sun, Yuan Zhou, Yonghui ZhangCyclooxygenase-2 (COX-2) is a significant therapeutic target of chronic inflammatory diseases.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
architect Nanostructures : novel architecture / Mircea V. Diudea, editor By prospero.murdoch.edu.au Published On :: Full Article
architect About HTML semantics and front-end architecture By nicolasgallagher.com Published On :: Wed, 14 Mar 2012 17:00:00 -0700 A collection of thoughts, experiences, ideas that I like, and ideas that I have been experimenting with over the last year. It covers HTML semantics, components and approaches to front-end architecture, class naming patterns, and HTTP compression. About semantics Semantics is the study of the relationships between signs and symbols and what they represent. In linguistics, this is primarily the study of the meaning of signs (such as words, phrases, or sounds) in language. In the context of front-end web development, semantics are largely concerned with the agreed meaning of HTML elements, attributes, and attribute values (including extensions like Microdata). These agreed semantics, which are usually formalised in specifications, can be used to help programmes (and subsequently humans) better understand aspects of the information on a website. However, even after formalisation, the semantics of elements, attributes, and attribute values are subject to adaptation and co-option by developers. This can lead to subsequent modifications of the formally agreed semantics (and is an HTML design principle). Distinguishing between different types of HTML semantics The principle of writing “semantic HTML” is one of the foundations of modern, professional front-end development. Most semantics are related to aspects of the nature of the existing or expected content (e.g. h1 element, lang attribute, email value of the type attribute, Microdata). However, not all semantics need to be content-derived. Class names cannot be “unsemantic”. Whatever names are being used: they have meaning, they have purpose. Class name semantics can be different to those of HTML elements. We can leverage the agreed “global” semantics of HTML elements, certain HTML attributes, Microdata, etc., without confusing their purpose with those of the “local” website/application-specific semantics that are usually contained in the values of attributes like the class attribute. Despite the HTML5 specification section on classes repeating the assumed “best practice” that… …authors are encouraged to use [class attribute] values that describe the nature of the content, rather than values that describe the desired presentation of the content. …there is no inherent reason to do this. In fact, it’s often a hindrance when working on large websites or applications. Content-layer semantics are already served by HTML elements and other attributes. Class names impart little or no useful semantic information to machines or human visitors unless it is part of a small set of agreed upon (and machine readable) names – Microformats. The primary purpose of a class name is to be a hook for CSS and JavaScript. If you don’t need to add presentation and behaviour to your web documents, then you probably don’t need classes in your HTML. Class names should communicate useful information to developers. It’s helpful to understand what a specific class name is going to do when you read a DOM snippet, especially in multi-developer teams where front-enders won’t be the only people working with HTML components. Take this very simple example: <div class="news"> <h2>News</h2> [news content] </div> The class name news doesn’t tell you anything that is not already obvious from the content. It gives you no information about the architectural structure of the component, and it cannot be used with content that isn’t “news”. Tying your class name semantics tightly to the nature of the content has already reduced the ability of your architecture to scale or be easily put to use by other developers. Content-independent class names An alternative is to derive class name semantics from repeating structural and functional patterns in a design. The most reusable components are those with class names that are independent of the content. We shouldn’t be afraid of making the connections between layers clear and explicit rather than having class names rigidly reflect specific content. Doing this doesn’t make classes “unsemantic”, it just means that their semantics are not derived from the content. We shouldn’t be afraid to include additional HTML elements if they help create more robust, flexible, and reusable components. Doing so does not make the HTML “unsemantic”, it just means that you use elements beyond the bare minimum needed to markup the content. Front-end architecture The aim of a component/template/object-oriented architecture is to be able to develop a limited number of reusable components that can contain a range of different content types. The important thing for class name semantics in non-trivial applications is that they be driven by pragmatism and best serve their primary purpose – providing meaningful, flexible, and reusable presentational/behavioural hooks for developers to use. Reusable and combinable components Scalable HTML/CSS must, by and large, rely on classes within the HTML to allow for the creation of reusable components. A flexible and reusable component is one which neither relies on existing within a certain part of the DOM tree, nor requires the use of specific element types. It should be able to adapt to different containers and be easily themed. If necessary, extra HTML elements (beyond those needed just to markup the content) and can be used to make the component more robust. A good example is what Nicole Sullivan calls the media object. Components that can be easily combined benefit from the avoidance of type selectors in favour of classes. The following example prevents the easy combination of the btn component with the uilist component. The problems are that the specificity of .btn is less than that of .uilist a (which will override any shared properties), and the uilist component requires anchors as child nodes. .btn { /* styles */ } .uilist { /* styles */ } .uilist a { /* styles */ } <nav class="uilist"> <a href="#">Home</a> <a href="#">About</a> <a class="btn" href="#">Login</a> </nav> An approach that improves the ease with which you can combine other components with uilist is to use classes to style the child DOM elements. Although this helps to reduce the specificity of the rule, the main benefit is that it gives you the option to apply the structural styles to any type of child node. .btn { /* styles */ } .uilist { /* styles */ } .uilist-item { /* styles */ } <nav class="uilist"> <a class="uilist-item" href="#">Home</a> <a class="uilist-item" href="#">About</a> <span class="uilist-item"> <a class="btn" href="#">Login</a> </span> </nav> JavaScript-specific classes Using some form of JavaScript-specific classes can help to reduce the risk that thematic or structural changes to components will break any JavaScript that is also applied. An approach that I’ve found helpful is to use certain classes only for JavaScript hooks – js-* – and not to hang any presentation off them. <a href="/login" class="btn btn-primary js-login"></a> This way, you can reduce the chance that changing the structure or theme of components will inadvertently affect any required JavaScript behaviour and complex functionality. Component modifiers Components often have variants with slightly different presentations from the base component, e.g., a different coloured background or border. There are two mains patterns used to create these component variants. I’m going to call them the “single-class” and “multi-class” patterns. The “single-class” pattern .btn, .btn-primary { /* button template styles */ } .btn-primary { /* styles specific to save button */ } <button class="btn">Default</button> <button class="btn-primary">Login</button> The “multi-class” pattern .btn { /* button template styles */ } .btn-primary { /* styles specific to primary button */ } <button class="btn">Default</button> <button class="btn btn-primary">Login</button> If you use a pre-processor, you might use Sass’s @extend functionality to reduce some of the maintenance work involved in using the “single-class” pattern. However, even with the help of a pre-processor, my preference is to use the “multi-class” pattern and add modifier classes in the HTML. I’ve found it to be a more scalable pattern. For example, take the base btn component and add a further 5 types of button and 3 additional sizes. Using a “multi-class” pattern you end up with 9 classes that can be mixed-and-matched. Using a “single-class” pattern you end up with 24 classes. It is also easier to make contextual tweaks to a component, if absolutely necessary. You might want to make small adjustments to any btn that appears within another component. /* "multi-class" adjustment */ .thing .btn { /* adjustments */ } /* "single-class" adjustment */ .thing .btn, .thing .btn-primary, .thing .btn-danger, .thing .btn-etc { /* adjustments */ } A “multi-class” pattern means you only need a single intra-component selector to target any type of btn-styled element within the component. A “single-class” pattern would mean that you may have to account for any possible button type, and adjust the selector whenever a new button variant is created. Structured class names When creating components – and “themes” that build upon them – some classes are used as component boundaries, some are used as component modifiers, and others are used to associate a collection of DOM nodes into a larger abstract presentational component. It’s hard to deduce the relationship between btn (component), btn-primary (modifier), btn-group (component), and btn-group-item (component sub-object) because the names don’t clearly surface the purpose of the class. There is no consistent pattern. In early 2011, I started experimenting with naming patterns that help me to more quickly understand the presentational relationship between nodes in a DOM snippet, rather than trying to piece together the site’s architecture by switching back-and-forth between HTML, CSS, and JS files. The notation in the gist is primarily influenced by the BEM system‘s approach to naming, but adapted into a form that I found easier to scan. Since I first wrote this post, several other teams and frameworks have adopted this approach. MontageJS modified the notation into a different style, which I prefer and currently use in the SUIT framework: /* Utility */ .u-utilityName {} /* Component */ .ComponentName {} /* Component modifier */ .ComponentName--modifierName {} /* Component descendant */ .ComponentName-descendant {} /* Component descendant modifier */ .ComponentName-descendant--modifierName {} /* Component state (scoped to component) */ .ComponentName.is-stateOfComponent {} This is merely a naming pattern that I’m finding helpful at the moment. It could take any form. But the benefit lies in removing the ambiguity of class names that rely only on (single) hyphens, or underscores, or camel case. A note on raw file size and HTTP compression Related to any discussion about modular/scalable CSS is a concern about file size and “bloat”. Nicole Sullivan’s talks often mention the file size savings (as well as maintenance improvements) that companies like Facebook experienced when adopting this kind of approach. Further to that, I thought I’d share my anecdotes about the effects of HTTP compression on pre-processor output and the extensive use of HTML classes. When Twitter Bootstrap first came out, I rewrote the compiled CSS to better reflect how I would author it by hand and to compare the file sizes. After minifying both files, the hand-crafted CSS was about 10% smaller than the pre-processor output. But when both files were also gzipped, the pre-processor output was about 5% smaller than the hand-crafted CSS. This highlights how important it is to compare the size of files after HTTP compression, because minified file sizes do not tell the whole story. It suggests that experienced CSS developers using pre-processors don’t need to be overly concerned about a certain degree of repetition in the compiled CSS because it can lend itself well to smaller file sizes after HTTP compression. The benefits of more maintainable “CSS” code via pre-processors should trump concerns about the aesthetics or size of the raw and minified output CSS. In another experiment, I removed every class attribute from a 60KB HTML file pulled from a live site (already made up of many reusable components). Doing this reduced the file size to 25KB. When the original and stripped files were gzipped, their sizes were 7.6KB and 6KB respectively – a difference of 1.6KB. The actual file size consequences of liberal class use are rarely going to be worth stressing over. How I learned to stop worrying… The experience of many skilled developers, over many years, has led to a shift in how large-scale website and applications are developed. Despite this, for individuals weaned on an ideology where “semantic HTML” means using content-derived class names (and even then, only as a last resort), it usually requires you to work on a large application before you can become acutely aware of the impractical nature of that approach. You have to be prepared to disgard old ideas, look at alternatives, and even revisit ways that you may have previously dismissed. Once you start writing non-trivial websites and applications that you and others must not only maintain but actively iterate upon, you quickly realise that despite your best efforts, your code starts to get harder and harder to maintain. It’s well worth taking the time to explore the work of some people who have proposed their own approaches to tackling these problems: Nicole’s blog and Object Oriented CSS project, Jonathan Snook’s Scalable Modular Architecture CSS, and the Block Element Modifier method that Yandex have developed. When you choose to author HTML and CSS in a way that seeks to reduce the amount of time you spend writing and editing CSS, it involves accepting that you must instead spend more time changing HTML classes on elements if you want to change their styles. This turns out to be fairly practical, both for front-end and back-end developers – anyone can rearrange pre-built “lego blocks”; it turns out that no one can perform CSS-alchemy. Full Article
architect Strategic excellence in the architecture, engineering, and construction industries [electronic resource] : how AEC firms can develop and execute strategy using lean Six Sigma / Gerhard Plenert and Joshua J. Plenert By prospero.murdoch.edu.au Published On :: Plenert, Gerhard Johannes, author Full Article
architect Succeeding with SOA [electronic resource] : realizing business value through total architecture / Paul C. Brown By prospero.murdoch.edu.au Published On :: Brown, Paul C Full Article
architect Zero Trust Networks with VMware NSX [electronic resource] : Build Highly Secure Network Architectures for Your Data Centers / by Sreejith Keeriyattil By prospero.murdoch.edu.au Published On :: Keeriyattil, Sreejith. author Full Article
architect Young Indian architect named ‘leader of tomorrow’ by Time By indianexpress.com Published On :: Sat, 20 Sep 2014 06:26:17 +0000 Full Article DO NOT USE Indians Abroad World
architect Bid Solution Architect - Aerospace: QinetiQ By brightrecruits.com Published On :: Tue, 05 May 2020 00:00:00 +0100 £Hourly paid terms: QinetiQFor more latest jobs and jobs in South West England visit brightrecruits.com Full Article South West England
architect Coordinator and Architect for IT and Controls Systems - Swiss Light Source 2.0: Paul Scherrer Institute By brightrecruits.com Published On :: Wed, 06 May 2020 00:00:00 +0100 €Attractive: Paul Scherrer InstituteFor more latest jobs and jobs in Switzerland visit brightrecruits.com Full Article Switzerland
architect Urban ethics under conditions of crisis: politics, architecture, landscape sustainability and multidisciplinary engineering / editors, Konstantinos Moraitis, Stamatina Th. Rassia By library.mit.edu Published On :: Sun, 6 Oct 2019 06:00:01 EDT Rotch Library - HT167.U715 2019 Full Article
architect Ng'ambo atlas: historic urban landscape of Zanzibar Town's "other side" / Department of Urban and Rural Planning, Zanzibar ; African Architecture Matters By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - HT169.T332 Z36 2019 Full Article
architect Back to the future: architecture and urban planning for an (extra)ordinary metropolis / Andrea Bulleri By library.mit.edu Published On :: Sun, 23 Feb 2020 06:00:02 EST Rotch Library - NA9241.A42 T53 2018 Full Article
architect Designing memory: the architecture of commemoration in Europe, 1914 to the present / Sabina Tanović By library.mit.edu Published On :: Sun, 29 Mar 2020 06:00:01 EDT Rotch Library - NA9348.E85 T36 2019 Full Article
architect [ASAP] In situ Grown Ni phosphate@Ni<sub>12</sub>P<sub>5</sub> Nanorod Arrays as a Unique Core–Shell Architecture: Competitive Bifunctional Electrocatalysts for Urea Electrolysis at Large Current Densities By feedproxy.google.com Published On :: Thu, 07 May 2020 04:00:00 GMT ACS Sustainable Chemistry & EngineeringDOI: 10.1021/acssuschemeng.0c01814 Full Article
architect [ASAP] Phosphorus- and Nitrogen-Doped Carbon Nanosheets Constructed with Monolayered Mesoporous Architectures By feedproxy.google.com Published On :: Wed, 06 May 2020 04:00:00 GMT Chemistry of MaterialsDOI: 10.1021/acs.chemmater.0c00731 Full Article
architect Historical references in architectural design: special emphasis on Anatolian vernacular architecture and Turkish tourism architecture / Emrah Aslan, Dogan Zafer Erturk, John Hudson. By grammy.mit.edu Published On :: Tues, 5 Apr 2016 Rotch Library - NA1364.A83 2012 Full Article
architect Modern architecture Kuwait: 1949-1989 / Fabbri Roberto, Sara Saragoça, Ricardo Camacho ; Arabic translation: Mohamed M. Moustafa By grammy.mit.edu Published On :: Wed, 20 Apr 2016 Rotch Library - NA1472.5.F33 2016 Full Article
architect The making of the Tunisian revolution: contexts, architects, prospects / edited by Nouri Gana By grammy.mit.edu Published On :: Fri, 3 Jun 2016 Rotch Library - DT266.7.M35 2013 Full Article
architect Le qṣar, type d'implantation humaine au Sahara: architecture du sud algérien / Mounia Chekhab-Abudaya By grammy.mit.edu Published On :: Wed, 6 Jul 2016 Rotch Library - NA1588.C44 2016 Full Article
architect Art, icon, and architecture in South Asia: essays in honour of Dr. Devangana Desai / edited by Anila Verghese, Anna L. Dallapiccola By grammy.mit.edu Published On :: Mon, 25 Jul 2016 Rotch Library - N8193.S68 A78 2015 Full Article
architect Rock-cut temples of South India: architectural dimensions / Preeti Sharma By grammy.mit.edu Published On :: Mon, 25 Jul 2016 Rotch Library - NA6007.S6 S43 2015 Full Article
architect Community management of urban open spaces in developing economies / by Dr. Bharti Mohapatra (School of Planning and Architecture, Vijayawada, India) By grammy.mit.edu Published On :: Mon, 1 Aug 2016 Rotch Library - SB486.M35 M64 2016 Full Article
architect Architecture and attitude: a contemporary Indian perspective / studio archohm ; photography, André Jeanpierre Fanthome, Humayun Khan ; the team, Lena Ragade Gupta [and four others] By grammy.mit.edu Published On :: Tues, 30 Aug 2016 Rotch Library - NA1505.A73 2015 Full Article
architect The origins of visual culture in the Islamic world: aesthetics, art and architecture in early Islam / Mohammed Hamdouni Alami By grammy.mit.edu Published On :: Tues, 6 Sep 2016 Rotch Library - N6260.H34 2015 Full Article
architect Masterpiece of a master architect: Centre for Development Studies / designed & edited by Jayesh S. Pillai By grammy.mit.edu Published On :: Wed, 26 Oct 2016 Rotch Library - NA1508.T75 M37 2014 Full Article
architect Lahore: history and architecture of Mughal monuments / Anjum Rehmani By grammy.mit.edu Published On :: Mon, 31 Oct 2016 Rotch Library - NA1510.72.L35 R34 2016 Full Article
architect The destruction of memory: architecture at war / Robert Bevan By grammy.mit.edu Published On :: Fri, 18 Nov 2016 Rotch Library - HM554.B48 2016 Full Article
architect Habib Rahman: the architect of independent India / S.M. Akhtar By grammy.mit.edu Published On :: Thur, 8 Dec 2016 Rotch Library - NA1510.R34 A34 2016 Full Article
architect Islamic architecture at the cross roads / edited by S.M. Akhtar By grammy.mit.edu Published On :: Fri, 9 Dec 2016 Rotch Library - NA4670.I58 2011 Full Article
architect A system's evaluation of global history of Indian architecture / Joy Sen, Akshata Mohanty By grammy.mit.edu Published On :: Mon, 12 Dec 2016 Rotch Library - NA1501.S46 2016 Full Article
architect Architecture and urbanism in the British Empire / edited by G.A. Bremner By grammy.mit.edu Published On :: Wed, 1 Feb 2017 Rotch Library - NA964.A7295 2016 Full Article
architect Architectural design and urban planning summer studio 2015, Jerusalem: Mimari tasarım ve kent planlama yaz okulu, Kudüs 2015 / editor, Lana Kudumovič By grammy.mit.edu Published On :: Mon, 27 Feb 2017 Rotch Library - NA9246.6.J4 A73 2015 Full Article
architect Baolis of Bundi: the ancient stepwells / concept, Divya Gupta ; text, photographs, maps & illustrations, Architectural Heritage Division, INTACH By grammy.mit.edu Published On :: Thur, 30 Mar 2017 Rotch Library - NA2542.8.B36 2015 Full Article
architect History of Islamic architecture: Delhi Sultanate, Mughal and provincial period / Sharmin Khan (M Tech) By grammy.mit.edu Published On :: Fri, 31 Mar 2017 Rotch Library - NA1502.K43 2016 Full Article
architect The past as present: pedagogical practices in architecture at the Bombay School of Art / [curated by] Mustansir Dalvi ; designed by Puneet Bansal, Varada Phadkay, Amruta Gandhi, Aniket Risbud By grammy.mit.edu Published On :: Tues, 4 Apr 2017 Rotch Library - NA1501.P38 2016 Full Article
architect A work of beauty: the architecture and landscape of Rashtrapati Bhavan / edited by Narayani Gupta ; photography by Ram Rahman By grammy.mit.edu Published On :: Wed, 5 Apr 2017 Rotch Library - NA1508.N4 W67 2016 Full Article
architect Le décor architectural artuqide en Pierre de Mardin placé dans son contexte régional: contribution à l'histoire du décor géométrique et végétal du Proche-Orient des XIIe-XVe siècles / Deniz Beyazit By grammy.mit.edu Published On :: Mon, 10 Apr 2017 Rotch Library - NA3565.M37 B49 2016 Full Article
architect Occidentalist perceptions of European architecture in nineteenth-century Persian travel diaries: travels in farangi space / Vahid Vahdat By grammy.mit.edu Published On :: Fri, 12 May 2017 Rotch Library - NA2765.V34 2017 Full Article
architect Architecture and urbanism / A.K. Jain By grammy.mit.edu Published On :: Tues, 30 May 2017 Rotch Library - NA1501.J34 2016 Full Article
architect Architecture of groundwater monument: an outlook / Er. (Dr.) Bhaskar Chandra Dash, Dr. Braja Kishor Padhi By grammy.mit.edu Published On :: Tues, 30 May 2017 Rotch Library - GB1140.N83 D37 2016 Full Article